home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000246_news@columbia.edu _Wed Mar 20 16:20:54 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id QAA15783 for <kermit.misc@watsun>; Wed, 20 Mar 1996 16:20:52 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id QAA22046 for kermit.misc@watsun; Wed, 20 Mar 1996 16:20:48 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Please advise on uncommon kermit implementation
  8. Date: 20 Mar 1996 21:20:35 GMT
  9. Organization: Columbia University
  10. Lines: 28
  11. Message-ID: <4ipsr3$lge@apakabar.cc.columbia.edu>
  12. References: <31502606.62E94955@lvd.be>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <31502606.62E94955@lvd.be>, Lieven Tomme  <ltom@lvd.be> wrote:
  16. : I need an implementation of a kermit server running on a PC under
  17. : Windows 95, that should be able to handle 'get' and 'send' client
  18. : requests in a special way :
  19. :    - upon reception of a 'get', the server should roam several
  20. :      user definable directories, dependant on the the requested
  21. :      file name extension, in search for the particular file.
  22. :    - upon reception of a send, the server should place the
  23. :      particular file in a directory that depends solely on
  24. :      the extension of the file name.
  25. : The filenames themselves BTW can be 20 characters long, plus
  26. : the extension. Transmission will go over an ordinary serial line.
  27. : The only "solution" I see at this moment, consists of incorporating
  28. : that functionality in the sources. I believe I may be quite
  29. : convinced that there is no such a thing as a combination of 
  30. : a kermit version plus script that should make my day.
  31. : And knowing that K95 sources are not being distributed, I don't
  32. : know where to start ...
  33. Here is a better idea.  Use Kermit 95 exactly as it is, but rather
  34. than run it in server mode, run it in host mode.
  35.  
  36. Make your modifications to the host-mode script.  Very easy.
  37. You have all the string manipulation and file-checking functions
  38. you need.
  39.  
  40. - Frank